From: Florian Fainelli Date: Thu, 14 Aug 2008 22:16:22 +0000 (+0000) Subject: Move directory creation to postinst script (#3841) X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=302a652c60801e9e1a9341477a6476672355b207;p=openwrt%2Fsvn-archive%2Fpackages.git Move directory creation to postinst script (#3841) SVN-Revision: 12314 --- diff --git a/net/iptraf/Makefile b/net/iptraf/Makefile index 874f30971..33a0acfa1 100644 --- a/net/iptraf/Makefile +++ b/net/iptraf/Makefile @@ -36,6 +36,13 @@ define Package/iptraf/description and LAN station packet and byte counts. endef +define Package/iptraf/postinst +#!/bin/sh +if [ -z "$${IPKG_INSTROOT}" ]; then + mkdir -p $${IPKG_INSTROOT}/var/log/iptraf $${IPKG_INSTROOT}/var/run/iptraf $${IPKG_INSTROOT}/var/lib/iptraf/ +fi +endef + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR)/src \ $(TARGET_CONFIGURE_OPTS) \ @@ -52,9 +59,6 @@ endef define Package/iptraf/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/iptraf $(1)/usr/bin/ - $(INSTALL_DIR) $(1)/var/lib/iptraf/ - echo "$(PKG_VERSION)" > $(1)/var/lib/iptraf/version - $(INSTALL_DIR) $(1)/var/log/iptraf $(1)/var/run/iptraf endef $(eval $(call BuildPackage,iptraf))